home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ Win2K GPO 2.xpl < prev    next >
Text File  |  2001-04-28  |  2KB  |  63 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH 1"="Network\Security\ActiveDirectory"
  5. "UIPATH 2"="System\Debugging"
  6. "NAME"="Group Policy Objects (GPO) Logging"
  7. "VERSION"="1.20"
  8. "OSVERSION"="000101"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="Enable ActiveDirectory GPOs debug log"
  11. "TEXT 2"="Enable ActiveDirectory GPOs logging to event log"
  12. "DESCRIPTION 1"="If you encounter problems after making changes to the Default Domain and/or Default Domain Controller group policies, you can enable GPO debug logging."
  13. "DESCRIPTION 2"="When enabled, the logfile can be found: %SystemRoot%\security\logs\Scepol.log"
  14. "DESCRIPTION 3"="Please note that his can only be done on a Windows 2000 Server!"
  15. "AUTHOR"="Xteq Systems"
  16. "CONTACTURL"="http://www.xteq.com"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"=" "
  19.  
  20.  
  21. sV1="HKLM\Software\Microsoft\Windows NT\CurrentVersion\SecEdit\PolicyDebugLevel" 'DW = 2
  22. sV2="HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Diagnostics\RunDiagnosticLoggingGroupPolicy" 'DW = 1
  23.  
  24. Sub Plugin_Initialize 
  25.     i=RegReadValue(sV1)
  26.     if i=2 then SetUIElement 1,true
  27.  
  28.     i=RegReadValue(sV2)
  29.     if i=1 then SetUIElement 2,true
  30.  
  31. End Sub
  32.  
  33. Sub Plugin_CheckData(ElementIndex)
  34. End Sub
  35.  
  36. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  b=GetUIElement(1)
  38.  if b=true then
  39.     Call RegWriteValue(sV1,2,2) 
  40.  else
  41.     If RegValueExists(sV1) then
  42.        Call RegDeleteValue(sV1)
  43.     end if
  44.  end if
  45.  
  46.  b=GetUIElement(2)
  47.  if b=true then
  48.     Call RegWriteValue(sV2,1,2) 
  49.  else
  50.     If RegValueExists(sV2) then
  51.        Call RegDeleteValue(sV2)
  52.     end if
  53.  end if
  54.  
  55. End Sub
  56.  
  57.  
  58. Sub Plugin_Terminate 
  59. End Sub
  60.  
  61.  
  62.  
  63.